home *** CD-ROM | disk | FTP | other *** search
/ CD-ROM Today (BR) Volume 4 #13 / CD-ROM Today Volume 4 nº 13 Aces Over Europe.iso / aoe / fixjoy.bat < prev    next >
DOS Batch File  |  1994-07-28  |  480b  |  21 lines

  1. @echo off
  2. if "%1" == "u" goto unfix
  3. if "%1" == "U" goto unfix
  4.  
  5.  
  6. echo Fixing Serial Joystick port....
  7. rename aoecd.bat aoecdold.bat
  8. rename aoecdjoy.bat aoecd.bat
  9. rename game.pif gameold.pif
  10. rename gamejoy.pif game.pif
  11. echo Serial Joystick Port Fixed.
  12. goto end
  13. :unfix
  14. echo Unfixing Serial Joystick port...
  15. rename aoecd.bat aoecdjoy.bat
  16. rename aoecdold.bat aoecd.bat
  17. rename game.pif gamejoy.pif
  18. rename gameold.pif game.pif
  19. echo Serial Joystick port unfixed.
  20. :end
  21.